Bug 553917 – Typo in gdkwindow-win32.c
authorCody Russell <bratsche@gnome.org>
Fri, 26 Sep 2008 16:47:58 +0000 (16:47 +0000)
committerCody Russell <bratsche@src.gnome.org>
Fri, 26 Sep 2008 16:47:58 +0000 (16:47 +0000)
2008-09-26  Cody Russell  <bratsche@gnome.org>

        Bug 553917 – Typo in gdkwindow-win32.c

        * gdk/win32/gdkwindow-win32.c: Fixed a typo in
        update_system_menu().  Changed GDK_DECOR_ALL to GDK_FUNC_ALL.

        Reported by Richard Hult

svn path=/trunk/; revision=21522

ChangeLog
gdk/win32/gdkwindow-win32.c

index d5822776618a1c636b88987ff0a85158850a16ae..6ee1c6c74f65809155b4c7a811504c81990d4a15 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2008-09-26  Cody Russell  <bratsche@gnome.org>
+
+       Bug 553917 – Typo in gdkwindow-win32.c
+
+       * gdk/win32/gdkwindow-win32.c: Fixed a typo in
+       update_system_menu().  Changed GDK_DECOR_ALL to GDK_FUNC_ALL.
+
+       Reported by Richard Hult
+
 2008-09-25  Marek Kasik  <mkasik@redhat.com>
 
        Bug 553241 – double freed pointer in lpr_write cause firefox3 crash
index 91c310dd60640b8ddba6168b0989334d4d5c0d59..78ca696eb35c2394538ec94a79d7128de149bbbb 100644 (file)
@@ -2959,7 +2959,7 @@ update_system_menu (GdkWindow *window)
     {
       HMENU hmenu = GetSystemMenu (GDK_WINDOW_HWND (window), FALSE);
 
-      all = (functions & GDK_DECOR_ALL);
+      all = (functions & GDK_FUNC_ALL);
       update_single_system_menu_entry (hmenu, all, functions & GDK_FUNC_RESIZE, SC_SIZE);
       update_single_system_menu_entry (hmenu, all, functions & GDK_FUNC_MOVE, SC_MOVE);
       update_single_system_menu_entry (hmenu, all, functions & GDK_FUNC_MINIMIZE, SC_MINIMIZE);